home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / gas / testsuite / gasp / crash1.asm < prev    next >
Encoding:
Assembly Source File  |  1996-07-04  |  87 b   |  14 lines

  1.  
  2.  
  3.     .MACRO     foo a b c=a
  4.     \a \b \c \d
  5.     .ENDM
  6.  
  7.     foo 1 2
  8.     foo 1 2 3 4
  9.     foo 1
  10.     foo 
  11.  
  12.  
  13.     .END
  14.